home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Animacje, filmy i prezentacje / Modelowanie 3D / YafRay 0.0.9 / YafRay 0.0.9 Installer.exe / embedded / InfoAfter.txt < prev    next >
Text File  |  2006-07-17  |  5KB  |  154 lines

  1. ******************************************
  2. * Yet Another Free Raytracer For Windows *
  3. * Version 0.0.9, threads and EXR enabled *
  4. ******************************************
  5.  
  6. **** >>>> READ YafRay DOCUMENTATION at htp://wiki.yafray.org !!!<<<
  7.  
  8. TABLE OF CONTENTS
  9. -----------------
  10.  
  11. 0 - Introduction
  12. 1 - Installation Notes
  13. 2 - YafRay Options
  14. 3 - How to set YafRay in PATH
  15. 4 - Changelog
  16.  
  17. ==================
  18. 0 - Introduction
  19. ==================
  20.  
  21. YafRay comes as a command line raytracer and dynamic library for
  22. integration into other applications (for example Blender).
  23. Currently, YafRay does not feature a GUI.
  24. Visit www.yafray.org for more information.
  25.  
  26. The command line syntax is:
  27.  
  28. yafray [options] file.xml
  29.  
  30. ==================
  31. 1 - Installation Notes
  32. ==================
  33.  
  34. If you're using YafRay since first versions, please be careful with a
  35. possible deprecated yafray.bat in your \windows folder.
  36. It could make YafRay fails. You have to delete it.
  37.  
  38. To run the latest version, you need MSVCR71.dll because from 0.0.8 on
  39. Yafray uses the dynamic runtime (mainly because of OpenEXR).
  40. MSVCR71.dll is part of the Microsoft .NET Framework 1.1 available from:
  41. http://msdn.microsoft.com/netframework/downloads/framework1_1/
  42.  
  43.  
  44. ==================
  45. 2 - YafRay Options
  46. ==================
  47.  
  48. -c N     -> Where 'N' is the number of CPU's to use 
  49.        (for multi-proccesor computers)
  50. -z    -> Use net optimized (under mosix clusters)
  51. -p PATH -> Where 'PATH' is the installing path of YafRay.
  52.             (By default YafRay uses Windows registry to locate grammar file
  53.             and plugins, so this option is not needed (If all runs fine ;-) ).
  54. -v      -> Shows YafRay's version.    
  55.  
  56. NEW since 0.0.6: 
  57.  
  58. -r min_x:max_x:min_y:max_y     -> Render region. Values between -1 and 1. 
  59.                    Whole Image is -r -1:1-1:1
  60.  
  61. To display the options, just type yafray and press ENTER
  62.  
  63.  
  64. ==============================
  65. 3 - HOW TO SET yafray.exe IN PATH
  66. ==============================
  67.  
  68. YafRay Installer doesn't add yafray executable to your PATH environment variable.
  69. So if you wish execute YafRay from any directory you need add YafRay's installation
  70. directory to the PATH variable yourself.
  71.  
  72.  
  73. I will assume that YAFRAY_DIR contains the YafRay installation directory. 
  74. If example, if you have installed YafRay in c:\Program Files\yafray you must
  75. change YAFRAY_DIR with c:\Program Files\yafray in the lines below.
  76.  
  77. * Setting the path in windows 95/98 
  78. -----------------------------------
  79.  
  80. - You need to be able to see hidden folders 
  81. - Click on "My Computer" 
  82. - Select "View" from the menu 
  83. - Select "Folder Options" 
  84. - In the window that pops up: 
  85.     - Select the "View" tab 
  86.     - Select "Show all files option" 
  87.     - Select "Ok" 
  88. - Editing AutoExec.bat 
  89. - Open C:\AutoExec.bat with Notepad, Wordpad or other text editor
  90. Two options:
  91.  
  92.     1.- Append YAFRAY_DIR to the PATH variable.    
  93.  
  94.     2.- Add the following line to the bottom of your file: 
  95.     SET PATH="YAFRAY_DIR";"%path%"
  96.  
  97. - Save and close 
  98. - RESTART Windows 
  99.  
  100.  
  101. * Setting the path in windows 2000/XP: 
  102. -----------------------------------
  103.  
  104. - Right click on my computer. 
  105. - Select "Properties". 
  106. - Click "Environment Variables". 
  107.  
  108. If you have Administrative privileges then you can Edit the Path in 
  109. the System Variables box. If you do not have Adminitrative privileges
  110. then you can Edit the PATH in the user variables box. 
  111.  
  112. - Select the variable "PATH" or "Path". 
  113. - Click "Edit...". 
  114. - In the box "Variable Value:" go all the way to the end (as far right 
  115.   as possible) you can do this by clicking in the box and then pressing
  116.   and hold in the right arrow on the keyboard. Once you are at the end
  117.   you will need to type the path to the executable program. You will 
  118.   need to type (without the quotes): ";YAFRAY_DIR". 
  119.  
  120. - Click "Ok". 
  121. - Click "Ok". 
  122. - Click "Ok". 
  123.  
  124. ================================
  125. 4 - CHANGELOG 
  126. ================================
  127.  
  128.  
  129. YafRay 0.0.9 is mainly a maintenance update.
  130.  
  131. Changes since 0.0.8 (all by Mathias Wein, Lynx in YafRay forums):
  132.  
  133. - new SAH-kdtree for mesh objects, which is hopefully mature now.
  134.  improvements include:
  135.  
  136.    * smaller memory footprint
  137.    * more robust traversal, so holes in meshes should be history
  138.    * faster ray-scene-intersection (depending on scene) due to new
  139.      building algorithm (surface area heuristic and triangle clipping,
  140.      preparing scene can take a bit longer though)
  141.  
  142. - image loading code is more careful when trying to load files with
  143.   unknown extension (crash-fixes)
  144.  
  145. - Added -p command line option for Linux to specify an alternative
  146.   plugin path when rendering XML (yafray executable), YafRay also prints
  147.   used plugin path and number of plugins loaded to console now
  148.  
  149. - changing number of threads with blender plugin now takes effect
  150.   without restarting blender (blender 2.42 and later only)
  151.  
  152. - fixed some minor bugs, code cleanups/updates for newer compilers and
  153.   build-environments
  154.